home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 5650 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  785 b 

  1. Path: connix.com!news
  2. From: Scott Hawley <shawley@connix.com>
  3. Newsgroups: comp.lang.c
  4. Subject: What's better & why
  5. Date: Mon, 19 Feb 1996 23:46:34 -0800
  6. Organization: SHAWLEY SYSTEMS
  7. Message-ID: <31297C5A.E6C@connix.com>
  8. NNTP-Posting-Host: shawley.connix.com
  9. Mime-Version: 1.0
  10. Content-Type: text/plain; charset=us-ascii
  11. Content-Transfer-Encoding: 7bit
  12. X-Mailer: Mozilla 2.0 (Win16; I)
  13.  
  14. I was just curious what you all though about the following code.
  15. Please tell me what is better (faster/Smaller) and why. Or does it make 
  16. any difference at all. I just though about this while I was programming 
  17. today?
  18.  
  19. example 1:
  20.                 val = 1;
  21.                 if( what ever...)val = 0;
  22.  
  23. or
  24. example 2:
  25.                 if( what ever... )val = 0;
  26.                 else val = 1;
  27.  
  28. amy remarks?
  29.